TextShape LineSpaceStyle

Gets or sets how the line space height should be interpreted. The height can be expressed as a factor of the text height or an exact value using the same units used for the text height.

public TextLineSpaceStyle LineSpaceStyle {get;Set}

 

Return value

TextLineSpaceStyle The value used to interpret height.

 

Example

Copy
DistanceUnit drillUnits = DistanceUnit.Millimeters;
scanDocument = scanDeviceManager.CreateScanDocument(GetselectedDeviceUniqueName(), DistanceUnit.Millimeters, false);

if (scanDocument != null)
{
    VectorImage vectorImage = scanDocument.CreateVectorImage("image1", drillUnits);

    vectorImage.SetMarkSpeed(1000);
    vectorImage.SetJumpSpeed(2000);
    vectorImage.SetJumpDelay(100);
    vectorImage.SetMarkDelay(100);

    //Set Laser Delays
    vectorImage.SetLaserOnDelay(10);
    vectorImage.SetLaserOffDelay(10);

    TextShape textShape = new TextShape();

    textShape.AddText("Sample text Sample text", "Arial", FontStyle.Regular, 10f, 1f);
    textShape.TextBoxHeight = 20;
    textShape.TextBoxWidth = 60;
    textShape.Angle = 0;
    textShape.HorizontalAlign = TextHorizontalAlign.Left;
    textShape.VerticalAlign = TextVerticalAlign.Center;
    textShape.WordWrap = true;
    
    textShape.LineSpaceStyle = TextLineSpaceStyle.Factor;
    textShape.LineSpace = 1f;


    vectorImage.AddText(textShape);

    scanDocument.Scripts.Add(new ScanningScriptChunk("defaultScript", "ScanAll()"));


    try
    {
        scanDocument.StartScanning();
    }
    catch
    {

    }
}